cloudflare
Version:
The official TypeScript library for the Cloudflare API
23 lines • 989 B
JavaScript
;
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
Object.defineProperty(exports, "__esModule", { value: true });
exports.Accounts = void 0;
const resource_1 = require("../../../resource.js");
class Accounts extends resource_1.APIResource {
/**
* Add an account as a member of a particular address map.
*/
update(addressMapId, params, options) {
const { account_id, body } = params;
return this._client.put(`/accounts/${account_id}/addressing/address_maps/${addressMapId}/accounts/${account_id}`, { body: body, ...options });
}
/**
* Remove an account as a member of a particular address map.
*/
delete(addressMapId, params, options) {
const { account_id } = params;
return this._client.delete(`/accounts/${account_id}/addressing/address_maps/${addressMapId}/accounts/${account_id}`, options);
}
}
exports.Accounts = Accounts;
//# sourceMappingURL=accounts.js.map