UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

35 lines 1.85 kB
"use strict"; // *** 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.vpcGatewayEndpointsOutput = exports.vpcGatewayEndpoints = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to query detailed information of privatelink vpc gateway endpoints */ /** @deprecated volcengine.privatelink.VpcGatewayEndpoints has been deprecated in favor of volcengine.privatelink.getVpcGatewayEndpoints */ function vpcGatewayEndpoints(args, opts) { pulumi.log.warn("vpcGatewayEndpoints is deprecated: volcengine.privatelink.VpcGatewayEndpoints has been deprecated in favor of volcengine.privatelink.getVpcGatewayEndpoints"); args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("volcengine:privatelink/vpcGatewayEndpoints:VpcGatewayEndpoints", { "endpointName": args.endpointName, "ids": args.ids, "nameRegex": args.nameRegex, "outputFile": args.outputFile, "projectName": args.projectName, "tags": args.tags, "vpcId": args.vpcId, }, opts); } exports.vpcGatewayEndpoints = vpcGatewayEndpoints; /** * Use this data source to query detailed information of privatelink vpc gateway endpoints */ /** @deprecated volcengine.privatelink.VpcGatewayEndpoints has been deprecated in favor of volcengine.privatelink.getVpcGatewayEndpoints */ function vpcGatewayEndpointsOutput(args, opts) { return pulumi.output(args).apply((a) => vpcGatewayEndpoints(a, opts)); } exports.vpcGatewayEndpointsOutput = vpcGatewayEndpointsOutput; //# sourceMappingURL=vpcGatewayEndpoints.js.map