UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

101 lines (100 loc) 3.16 kB
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({}); * ``` */ /** @deprecated volcengine.tls.AlarmWebhookIntegrations has been deprecated in favor of volcengine.tls.getAlarmWebhookIntegrations */ export declare function alarmWebhookIntegrations(args?: AlarmWebhookIntegrationsArgs, opts?: pulumi.InvokeOptions): Promise<AlarmWebhookIntegrationsResult>; /** * A collection of arguments for invoking AlarmWebhookIntegrations. */ export interface AlarmWebhookIntegrationsArgs { /** * 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 AlarmWebhookIntegrations. */ export interface AlarmWebhookIntegrationsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of alarm webhook integrations. */ readonly integrations: outputs.tls.AlarmWebhookIntegrationsIntegration[]; 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({}); * ``` */ /** @deprecated volcengine.tls.AlarmWebhookIntegrations has been deprecated in favor of volcengine.tls.getAlarmWebhookIntegrations */ export declare function alarmWebhookIntegrationsOutput(args?: AlarmWebhookIntegrationsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<AlarmWebhookIntegrationsResult>; /** * A collection of arguments for invoking AlarmWebhookIntegrations. */ export interface AlarmWebhookIntegrationsOutputArgs { /** * 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>; }