@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
58 lines • 2.32 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.checkPointsOutput = exports.checkPoints = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of tls check points
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.tls.getCheckPoints({
* consumerGroupName: "tf-consumer-group",
* projectId: "7a8ac13e-8e3e-4392-ae77-aea8efa49bbf",
* shardId: "0",
* topicId: "33124cc3-15c4-4cdc-9a8a-cc64a9d593dd",
* });
* ```
*/
/** @deprecated volcengine.tls.CheckPoints has been deprecated in favor of volcengine.tls.getCheckPoints */
function checkPoints(args, opts) {
pulumi.log.warn("checkPoints is deprecated: volcengine.tls.CheckPoints has been deprecated in favor of volcengine.tls.getCheckPoints");
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:tls/checkPoints:CheckPoints", {
"consumerGroupName": args.consumerGroupName,
"outputFile": args.outputFile,
"projectId": args.projectId,
"shardId": args.shardId,
"topicId": args.topicId,
}, opts);
}
exports.checkPoints = checkPoints;
/**
* Use this data source to query detailed information of tls check points
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.tls.getCheckPoints({
* consumerGroupName: "tf-consumer-group",
* projectId: "7a8ac13e-8e3e-4392-ae77-aea8efa49bbf",
* shardId: "0",
* topicId: "33124cc3-15c4-4cdc-9a8a-cc64a9d593dd",
* });
* ```
*/
/** @deprecated volcengine.tls.CheckPoints has been deprecated in favor of volcengine.tls.getCheckPoints */
function checkPointsOutput(args, opts) {
return pulumi.output(args).apply((a) => checkPoints(a, opts));
}
exports.checkPointsOutput = checkPointsOutput;
//# sourceMappingURL=checkPoints.js.map