@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
23 lines • 1.46 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.serverGroupAttributesOutput = exports.serverGroupAttributes = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/** @deprecated volcengine.nlb.ServerGroupAttributes has been deprecated in favor of volcengine.nlb.getServerGroupAttributes */
function serverGroupAttributes(args, opts) {
pulumi.log.warn("serverGroupAttributes is deprecated: volcengine.nlb.ServerGroupAttributes has been deprecated in favor of volcengine.nlb.getServerGroupAttributes");
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:nlb/serverGroupAttributes:ServerGroupAttributes", {
"outputFile": args.outputFile,
"serverGroupId": args.serverGroupId,
}, opts);
}
exports.serverGroupAttributes = serverGroupAttributes;
/** @deprecated volcengine.nlb.ServerGroupAttributes has been deprecated in favor of volcengine.nlb.getServerGroupAttributes */
function serverGroupAttributesOutput(args, opts) {
return pulumi.output(args).apply((a) => serverGroupAttributes(a, opts));
}
exports.serverGroupAttributesOutput = serverGroupAttributesOutput;
//# sourceMappingURL=serverGroupAttributes.js.map