import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of tls alarm webhook integrations
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const foo = volcengine.tls.getAlarmWebhookIntegrations({});
 * ```
 */
export declare function getAlarmWebhookIntegrations(args?: GetAlarmWebhookIntegrationsArgs, opts?: pulumi.InvokeOptions): Promise<GetAlarmWebhookIntegrationsResult>;
/**
 * A collection of arguments for invoking getAlarmWebhookIntegrations.
 */
export interface GetAlarmWebhookIntegrationsArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The ID of the alarm webhook integration.
     */
    webhookId?: string;
    /**
     * The name of the webhook integration. Fuzzy matching is supported.
     */
    webhookName?: string;
    /**
     * The type of the webhook integration.
     */
    webhookType?: string;
}
/**
 * A collection of values returned by getAlarmWebhookIntegrations.
 */
export interface GetAlarmWebhookIntegrationsResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * The list of alarm webhook integrations.
     */
    readonly integrations: outputs.tls.GetAlarmWebhookIntegrationsIntegration[];
    readonly outputFile?: string;
    /**
     * The total count of alarm webhook integrations.
     */
    readonly totalCount: number;
    /**
     * The ID of the alarm webhook integration.
     */
    readonly webhookId?: string;
    /**
     * The name of the webhook integration.
     */
    readonly webhookName?: string;
    /**
     * The type of the webhook.
     */
    readonly webhookType?: string;
}
/**
 * Use this data source to query detailed information of tls alarm webhook integrations
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const foo = volcengine.tls.getAlarmWebhookIntegrations({});
 * ```
 */
export declare function getAlarmWebhookIntegrationsOutput(args?: GetAlarmWebhookIntegrationsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAlarmWebhookIntegrationsResult>;
/**
 * A collection of arguments for invoking getAlarmWebhookIntegrations.
 */
export interface GetAlarmWebhookIntegrationsOutputArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * The ID of the alarm webhook integration.
     */
    webhookId?: pulumi.Input<string>;
    /**
     * The name of the webhook integration. Fuzzy matching is supported.
     */
    webhookName?: pulumi.Input<string>;
    /**
     * The type of the webhook integration.
     */
    webhookType?: pulumi.Input<string>;
}
