cloudflare
Version:
The official TypeScript library for the Cloudflare API
22 lines • 833 B
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../../../resource.mjs";
export class DOH extends APIResource {
/**
* Updates the DoH settings for your Zero Trust organization.
*/
update(params, options) {
const { account_id, ...body } = params;
return this._client.put(`/accounts/${account_id}/access/organizations/doh`, {
body,
...options,
})._thenUnwrap((obj) => obj.result);
}
/**
* Returns the DoH settings for your Zero Trust organization.
*/
get(params, options) {
const { account_id } = params;
return this._client.get(`/accounts/${account_id}/access/organizations/doh`, options)._thenUnwrap((obj) => obj.result);
}
}
//# sourceMappingURL=doh.mjs.map