cloudflare
Version:
The official TypeScript library for the Cloudflare API
36 lines • 1.44 kB
JavaScript
;
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
Object.defineProperty(exports, "__esModule", { value: true });
exports.SchemaValidation = void 0;
const resource_1 = require("../../../resource.js");
class SchemaValidation extends resource_1.APIResource {
/**
* Updates operation-level schema validation settings on the zone
*/
update(operationId, params, options) {
const { zone_id, ...body } = params;
return this._client.put(`/zones/${zone_id}/api_gateway/operations/${operationId}/schema_validation`, {
body,
...options,
});
}
/**
* Updates multiple operation-level schema validation settings on the zone
*/
edit(params, options) {
const { zone_id, settings_multiple_request } = params;
return this._client.patch(`/zones/${zone_id}/api_gateway/operations/schema_validation`, {
body: settings_multiple_request,
...options,
})._thenUnwrap((obj) => obj.result);
}
/**
* Retrieves operation-level schema validation settings on the zone
*/
get(operationId, params, options) {
const { zone_id } = params;
return this._client.get(`/zones/${zone_id}/api_gateway/operations/${operationId}/schema_validation`, options);
}
}
exports.SchemaValidation = SchemaValidation;
//# sourceMappingURL=schema-validation.js.map