@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
49 lines • 2.16 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.healthCheckLogTopicsOutput = exports.healthCheckLogTopics = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* 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 */
function healthCheckLogTopics(args, opts) {
pulumi.log.warn("healthCheckLogTopics is deprecated: volcengine.clb.HealthCheckLogTopics has been deprecated in favor of volcengine.clb.getHealthCheckLogTopics");
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:clb/healthCheckLogTopics:HealthCheckLogTopics", {
"logTopicId": args.logTopicId,
"outputFile": args.outputFile,
}, opts);
}
exports.healthCheckLogTopics = healthCheckLogTopics;
/**
* 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 */
function healthCheckLogTopicsOutput(args, opts) {
return pulumi.output(args).apply((a) => healthCheckLogTopics(a, opts));
}
exports.healthCheckLogTopicsOutput = healthCheckLogTopicsOutput;
//# sourceMappingURL=healthCheckLogTopics.js.map