UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

65 lines (64 loc) 2.23 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 projects * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const example = volcengine.clb.getHealthCheckLogProjects({}); * ``` */ /** @deprecated volcengine.clb.HealthCheckLogProjects has been deprecated in favor of volcengine.clb.getHealthCheckLogProjects */ export declare function healthCheckLogProjects(args?: HealthCheckLogProjectsArgs, opts?: pulumi.InvokeOptions): Promise<HealthCheckLogProjectsResult>; /** * A collection of arguments for invoking HealthCheckLogProjects. */ export interface HealthCheckLogProjectsArgs { /** * File name where to save data source results. */ outputFile?: string; } /** * A collection of values returned by HealthCheckLogProjects. */ export interface HealthCheckLogProjectsResult { /** * The collection of health check log projects. */ readonly healthCheckLogProjects: outputs.clb.HealthCheckLogProjectsHealthCheckLogProject[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly outputFile?: string; /** * The total count of query. */ readonly totalCount: number; } /** * Use this data source to query detailed information of health check log projects * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const example = volcengine.clb.getHealthCheckLogProjects({}); * ``` */ /** @deprecated volcengine.clb.HealthCheckLogProjects has been deprecated in favor of volcengine.clb.getHealthCheckLogProjects */ export declare function healthCheckLogProjectsOutput(args?: HealthCheckLogProjectsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<HealthCheckLogProjectsResult>; /** * A collection of arguments for invoking HealthCheckLogProjects. */ export interface HealthCheckLogProjectsOutputArgs { /** * File name where to save data source results. */ outputFile?: pulumi.Input<string>; }