// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../../resource'; import * as Core from '../../../core'; import { V4PagePaginationArray, type V4PagePaginationArrayParams } from '../../../pagination'; export class Operations extends APIResource { /** * Fully updates schema validation settings for a specific API operation. * * @example * ```ts * const operation = * await client.schemaValidation.settings.operations.update( * 'f174e90a-fafe-4643-bbbc-4a0ed4fc8415', * { * zone_id: '023e105f4ecef8ad9ca31a8372d0c353', * mitigation_action: 'block', * }, * ); * ``` */ update( operationId: string, params: OperationUpdateParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id, ...body } = params; return ( this._client.put(`/zones/${zone_id}/schema_validation/settings/operations/${operationId}`, { body, ...options, }) as Core.APIPromise<{ result: OperationUpdateResponse }> )._thenUnwrap((obj) => obj.result); } /** * Lists all per-operation schema validation settings configured for the zone. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const operationListResponse of client.schemaValidation.settings.operations.list( * { zone_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * )) { * // ... * } * ``` */ list( params: OperationListParams, options?: Core.RequestOptions, ): Core.PagePromise { const { zone_id, ...query } = params; return this._client.getAPIList( `/zones/${zone_id}/schema_validation/settings/operations`, OperationListResponsesV4PagePaginationArray, { query, ...options }, ); } /** * Removes custom schema validation settings for a specific API operation, * reverting to zone-level defaults. * * @example * ```ts * const operation = * await client.schemaValidation.settings.operations.delete( * 'f174e90a-fafe-4643-bbbc-4a0ed4fc8415', * { zone_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * ); * ``` */ delete( operationId: string, params: OperationDeleteParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id } = params; return ( this._client.delete( `/zones/${zone_id}/schema_validation/settings/operations/${operationId}`, options, ) as Core.APIPromise<{ result: OperationDeleteResponse }> )._thenUnwrap((obj) => obj.result); } /** * Updates schema validation settings for multiple API operations in a single * request. Efficient for applying consistent validation rules across endpoints. * * @example * ```ts * const response = * await client.schemaValidation.settings.operations.bulkEdit( * { * zone_id: '023e105f4ecef8ad9ca31a8372d0c353', * body: { * '3818d821-5901-4147-a474-f5f5aec1d54e': {}, * 'b17c8043-99a0-4202-b7d9-8f7cdbee02cd': {}, * }, * }, * ); * ``` */ bulkEdit( params: OperationBulkEditParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id, body } = params; return ( this._client.patch(`/zones/${zone_id}/schema_validation/settings/operations`, { body: body, ...options, }) as Core.APIPromise<{ result: OperationBulkEditResponse }> )._thenUnwrap((obj) => obj.result); } /** * Retrieves the schema validation settings configured for a specific API * operation. * * @example * ```ts * const operation = * await client.schemaValidation.settings.operations.get( * 'f174e90a-fafe-4643-bbbc-4a0ed4fc8415', * { zone_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * ); * ``` */ get( operationId: string, params: OperationGetParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id } = params; return ( this._client.get( `/zones/${zone_id}/schema_validation/settings/operations/${operationId}`, options, ) as Core.APIPromise<{ result: OperationGetResponse }> )._thenUnwrap((obj) => obj.result); } } export class OperationListResponsesV4PagePaginationArray extends V4PagePaginationArray {} export interface OperationUpdateResponse { /** * When set, this applies a mitigation action to this operation which supersedes a * global schema validation setting just for this operation * * - `"log"` - log request when request does not conform to schema for this * operation * - `"block"` - deny access to the site when request does not conform to schema * for this operation * - `"none"` - will skip mitigation for this operation */ mitigation_action: 'log' | 'block' | 'none'; /** * UUID. */ operation_id: string; } export interface OperationListResponse { /** * When set, this applies a mitigation action to this operation which supersedes a * global schema validation setting just for this operation * * - `"log"` - log request when request does not conform to schema for this * operation * - `"block"` - deny access to the site when request does not conform to schema * for this operation * - `"none"` - will skip mitigation for this operation */ mitigation_action: 'log' | 'block' | 'none'; /** * UUID. */ operation_id: string; } export interface OperationDeleteResponse { /** * UUID. */ operation_id?: string; } /** * Operation ID to per operation setting mapping */ export type OperationBulkEditResponse = { [key: string]: OperationBulkEditResponse.item }; export namespace OperationBulkEditResponse { export interface item { /** * When set, this applies a mitigation action to this operation which supersedes a * global schema validation setting just for this operation * * - `"log"` - log request when request does not conform to schema for this * operation * - `"block"` - deny access to the site when request does not conform to schema * for this operation * - `"none"` - will skip mitigation for this operation */ mitigation_action: 'log' | 'block' | 'none'; /** * UUID. */ operation_id: string; } } export interface OperationGetResponse { /** * When set, this applies a mitigation action to this operation which supersedes a * global schema validation setting just for this operation * * - `"log"` - log request when request does not conform to schema for this * operation * - `"block"` - deny access to the site when request does not conform to schema * for this operation * - `"none"` - will skip mitigation for this operation */ mitigation_action: 'log' | 'block' | 'none'; /** * UUID. */ operation_id: string; } export interface OperationUpdateParams { /** * Path param: Identifier. */ zone_id: string; /** * Body param: When set, this applies a mitigation action to this operation * * - `"log"` - log request when request does not conform to schema for this * operation * - `"block"` - deny access to the site when request does not conform to schema * for this operation * - `"none"` - will skip mitigation for this operation * - `null` - clears any mitigation action */ mitigation_action: 'log' | 'block' | 'none' | null; } export interface OperationListParams extends V4PagePaginationArrayParams { /** * Path param: Identifier. */ zone_id: string; } export interface OperationDeleteParams { /** * Identifier. */ zone_id: string; } export interface OperationBulkEditParams { /** * Path param: Identifier. */ zone_id: string; /** * Body param */ body: { [key: string]: OperationBulkEditParams.Body }; } export namespace OperationBulkEditParams { /** * Operation ID to mitigation action mappings */ export interface Body { /** * Mitigation actions are as follows: * * - `log` - log request when request does not conform to schema _ `block` - deny * access to the site when request does not conform to schema _ `none` - skip * running schema validation \* null - clears any existing per-operation setting */ mitigation_action?: 'none' | 'log' | 'block' | null; } } export interface OperationGetParams { /** * Identifier. */ zone_id: string; } Operations.OperationListResponsesV4PagePaginationArray = OperationListResponsesV4PagePaginationArray; export declare namespace Operations { export { type OperationUpdateResponse as OperationUpdateResponse, type OperationListResponse as OperationListResponse, type OperationDeleteResponse as OperationDeleteResponse, type OperationBulkEditResponse as OperationBulkEditResponse, type OperationGetResponse as OperationGetResponse, OperationListResponsesV4PagePaginationArray as OperationListResponsesV4PagePaginationArray, type OperationUpdateParams as OperationUpdateParams, type OperationListParams as OperationListParams, type OperationDeleteParams as OperationDeleteParams, type OperationBulkEditParams as OperationBulkEditParams, type OperationGetParams as OperationGetParams, }; }