UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

10 lines 404 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.addTagsToFirewall = void 0; const addTagsToFirewall = ({ httpClient, }) => ({ firewall_id, tags, }) => { const url = `/firewalls/${firewall_id}/tags`; const body = { tags }; return httpClient.post(url, body); }; exports.addTagsToFirewall = addTagsToFirewall; //# sourceMappingURL=add-tags-to-firewall.js.map