import * as pulumi from "@pulumi/pulumi"; /** * **Note:** This data source is going to be deprecated, please use outgoing webhook data source instead. * * [HTTP API](https://grafana.com/docs/oncall/latest/oncall-api-reference/outgoing_webhooks/) * * !> Deprecated: Use the `grafana.OncallOutgoingWebhook` data source instead. */ export declare function getOncallAction(args: GetOncallActionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOncallAction. */ export interface GetOncallActionArgs { /** * The action name. */ name: string; } /** * A collection of values returned by getOncallAction. */ export interface GetOncallActionResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The action name. */ readonly name: string; } /** * **Note:** This data source is going to be deprecated, please use outgoing webhook data source instead. * * [HTTP API](https://grafana.com/docs/oncall/latest/oncall-api-reference/outgoing_webhooks/) * * !> Deprecated: Use the `grafana.OncallOutgoingWebhook` data source instead. */ export declare function getOncallActionOutput(args: GetOncallActionOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getOncallAction. */ export interface GetOncallActionOutputArgs { /** * The action name. */ name: pulumi.Input; }