@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
32 lines • 1.43 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.getVpcGatewayEndpointsOutput = exports.getVpcGatewayEndpoints = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of privatelink vpc gateway endpoints
*/
function getVpcGatewayEndpoints(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:privatelink/getVpcGatewayEndpoints:getVpcGatewayEndpoints", {
"endpointName": args.endpointName,
"ids": args.ids,
"nameRegex": args.nameRegex,
"outputFile": args.outputFile,
"projectName": args.projectName,
"tags": args.tags,
"vpcId": args.vpcId,
}, opts);
}
exports.getVpcGatewayEndpoints = getVpcGatewayEndpoints;
/**
* Use this data source to query detailed information of privatelink vpc gateway endpoints
*/
function getVpcGatewayEndpointsOutput(args, opts) {
return pulumi.output(args).apply((a) => getVpcGatewayEndpoints(a, opts));
}
exports.getVpcGatewayEndpointsOutput = getVpcGatewayEndpointsOutput;
//# sourceMappingURL=getVpcGatewayEndpoints.js.map