@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
78 lines (77 loc) • 2.48 kB
TypeScript
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",
* });
* ```
*/
/** @deprecated volcengine.clb.HealthCheckLogTopics has been deprecated in favor of volcengine.clb.getHealthCheckLogTopics */
export declare function healthCheckLogTopics(args: HealthCheckLogTopicsArgs, opts?: pulumi.InvokeOptions): Promise<HealthCheckLogTopicsResult>;
/**
* A collection of arguments for invoking HealthCheckLogTopics.
*/
export interface HealthCheckLogTopicsArgs {
/**
* The ID of the log topic.
*/
logTopicId: string;
/**
* File name where to save data source results.
*/
outputFile?: string;
}
/**
* A collection of values returned by HealthCheckLogTopics.
*/
export interface HealthCheckLogTopicsResult {
/**
* The collection of query.
*/
readonly healthCheckLogTopics: outputs.clb.HealthCheckLogTopicsHealthCheckLogTopic[];
/**
* 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",
* });
* ```
*/
/** @deprecated volcengine.clb.HealthCheckLogTopics has been deprecated in favor of volcengine.clb.getHealthCheckLogTopics */
export declare function healthCheckLogTopicsOutput(args: HealthCheckLogTopicsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<HealthCheckLogTopicsResult>;
/**
* A collection of arguments for invoking HealthCheckLogTopics.
*/
export interface HealthCheckLogTopicsOutputArgs {
/**
* The ID of the log topic.
*/
logTopicId: pulumi.Input<string>;
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
}