UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

76 lines (75 loc) 2.27 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to query detailed information of health check log topics * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const example = volcengine.clb.getHealthCheckLogTopics({ * logTopicId: "82fddbd8-4140-4527-****-b89d2aae4a61", * }); * ``` */ export declare function getHealthCheckLogTopics(args: GetHealthCheckLogTopicsArgs, opts?: pulumi.InvokeOptions): Promise<GetHealthCheckLogTopicsResult>; /** * A collection of arguments for invoking getHealthCheckLogTopics. */ export interface GetHealthCheckLogTopicsArgs { /** * The ID of the log topic. */ logTopicId: string; /** * File name where to save data source results. */ outputFile?: string; } /** * A collection of values returned by getHealthCheckLogTopics. */ export interface GetHealthCheckLogTopicsResult { /** * The collection of query. */ readonly healthCheckLogTopics: outputs.clb.GetHealthCheckLogTopicsHealthCheckLogTopic[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly logTopicId: string; readonly outputFile?: string; /** * The total count of query. */ readonly totalCount: number; } /** * Use this data source to query detailed information of health check log topics * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const example = volcengine.clb.getHealthCheckLogTopics({ * logTopicId: "82fddbd8-4140-4527-****-b89d2aae4a61", * }); * ``` */ export declare function getHealthCheckLogTopicsOutput(args: GetHealthCheckLogTopicsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetHealthCheckLogTopicsResult>; /** * A collection of arguments for invoking getHealthCheckLogTopics. */ export interface GetHealthCheckLogTopicsOutputArgs { /** * The ID of the log topic. */ logTopicId: pulumi.Input<string>; /** * File name where to save data source results. */ outputFile?: pulumi.Input<string>; }