UNPKG

terraform-generator

Version:

Generate Terraform configurations with Node.js.

28 lines (27 loc) 625 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Removed = void 0; const utils_1 = require("../utils"); const _1 = require("."); /** * @category Block */ class Removed extends _1.Block { /** * Construct removed. * * Refer to Terraform documentation on what can be put as arguments. * * @param args arguments */ constructor(args) { super('removed', [], args); } asArgument() { throw utils_1.Util.inaccessibleMethod(); } attr(_name) { throw utils_1.Util.inaccessibleMethod(); } } exports.Removed = Removed;