@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
26 lines • 1.25 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.tagsOutput = exports.tags = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/** @deprecated volcengine.nlb.Tags has been deprecated in favor of volcengine.nlb.getTags */
function tags(args, opts) {
pulumi.log.warn("tags is deprecated: volcengine.nlb.Tags has been deprecated in favor of volcengine.nlb.getTags");
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:nlb/tags:Tags", {
"outputFile": args.outputFile,
"resourceIds": args.resourceIds,
"resourceType": args.resourceType,
"tagFilters": args.tagFilters,
"tagType": args.tagType,
}, opts);
}
exports.tags = tags;
/** @deprecated volcengine.nlb.Tags has been deprecated in favor of volcengine.nlb.getTags */
function tagsOutput(args, opts) {
return pulumi.output(args).apply((a) => tags(a, opts));
}
exports.tagsOutput = tagsOutput;
//# sourceMappingURL=tags.js.map