// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../../resource'; import * as Core from '../../../core'; import * as CatchAllsAPI from './catch-alls'; import { CatchAllAction, CatchAllGetParams, CatchAllGetResponse, CatchAllMatcher, CatchAllUpdateParams, CatchAllUpdateResponse, CatchAlls, } from './catch-alls'; import { V4PagePaginationArray, type V4PagePaginationArrayParams } from '../../../pagination'; export class Rules extends APIResource { catchAlls: CatchAllsAPI.CatchAlls = new CatchAllsAPI.CatchAlls(this._client); /** * Rules consist of a set of criteria for matching emails (such as an email being * sent to a specific custom email address) plus a set of actions to take on the * email (like forwarding it to a specific destination address). */ create(params: RuleCreateParams, options?: Core.RequestOptions): Core.APIPromise { const { zone_id, ...body } = params; return ( this._client.post(`/zones/${zone_id}/email/routing/rules`, { body, ...options }) as Core.APIPromise<{ result: EmailRoutingRule; }> )._thenUnwrap((obj) => obj.result); } /** * Update actions and matches, or enable/disable specific routing rules. */ update( ruleIdentifier: string, params: RuleUpdateParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id, ...body } = params; return ( this._client.put(`/zones/${zone_id}/email/routing/rules/${ruleIdentifier}`, { body, ...options, }) as Core.APIPromise<{ result: EmailRoutingRule }> )._thenUnwrap((obj) => obj.result); } /** * Lists existing routing rules. */ list( params: RuleListParams, options?: Core.RequestOptions, ): Core.PagePromise { const { zone_id, ...query } = params; return this._client.getAPIList( `/zones/${zone_id}/email/routing/rules`, EmailRoutingRulesV4PagePaginationArray, { query, ...options }, ); } /** * Delete a specific routing rule. */ delete( ruleIdentifier: string, params: RuleDeleteParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id } = params; return ( this._client.delete( `/zones/${zone_id}/email/routing/rules/${ruleIdentifier}`, options, ) as Core.APIPromise<{ result: EmailRoutingRule }> )._thenUnwrap((obj) => obj.result); } /** * Get information for a specific routing rule already created. */ get( ruleIdentifier: string, params: RuleGetParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id } = params; return ( this._client.get( `/zones/${zone_id}/email/routing/rules/${ruleIdentifier}`, options, ) as Core.APIPromise<{ result: EmailRoutingRule }> )._thenUnwrap((obj) => obj.result); } } export class EmailRoutingRulesV4PagePaginationArray extends V4PagePaginationArray {} /** * Actions pattern. */ export interface Action { /** * Type of supported action. */ type: 'drop' | 'forward' | 'worker'; value: Array; } /** * Actions pattern. */ export interface ActionParam { /** * Type of supported action. */ type: 'drop' | 'forward' | 'worker'; value: Array; } export interface EmailRoutingRule { /** * Routing rule identifier. */ id?: string; /** * List actions patterns. */ actions?: Array; /** * Routing rule status. */ enabled?: true | false; /** * Matching patterns to forward to your actions. */ matchers?: Array; /** * Routing rule name. */ name?: string; /** * Priority of the routing rule. */ priority?: number; /** * @deprecated Routing rule tag. (Deprecated, replaced by routing rule identifier) */ tag?: string; } /** * Matching pattern to forward your actions. */ export interface Matcher { /** * Field for type matcher. */ field: 'to'; /** * Type of matcher. */ type: 'literal'; /** * Value for matcher. */ value: string; } /** * Matching pattern to forward your actions. */ export interface MatcherParam { /** * Field for type matcher. */ field: 'to'; /** * Type of matcher. */ type: 'literal'; /** * Value for matcher. */ value: string; } export interface RuleCreateParams { /** * Path param: Identifier */ zone_id: string; /** * Body param: List actions patterns. */ actions: Array; /** * Body param: Matching patterns to forward to your actions. */ matchers: Array; /** * Body param: Routing rule status. */ enabled?: true | false; /** * Body param: Routing rule name. */ name?: string; /** * Body param: Priority of the routing rule. */ priority?: number; } export interface RuleUpdateParams { /** * Path param: Identifier */ zone_id: string; /** * Body param: List actions patterns. */ actions: Array; /** * Body param: Matching patterns to forward to your actions. */ matchers: Array; /** * Body param: Routing rule status. */ enabled?: true | false; /** * Body param: Routing rule name. */ name?: string; /** * Body param: Priority of the routing rule. */ priority?: number; } export interface RuleListParams extends V4PagePaginationArrayParams { /** * Path param: Identifier */ zone_id: string; /** * Query param: Filter by enabled routing rules. */ enabled?: true | false; } export interface RuleDeleteParams { /** * Identifier */ zone_id: string; } export interface RuleGetParams { /** * Identifier */ zone_id: string; } Rules.EmailRoutingRulesV4PagePaginationArray = EmailRoutingRulesV4PagePaginationArray; Rules.CatchAlls = CatchAlls; export declare namespace Rules { export { type Action as Action, type EmailRoutingRule as EmailRoutingRule, type Matcher as Matcher, EmailRoutingRulesV4PagePaginationArray as EmailRoutingRulesV4PagePaginationArray, type RuleCreateParams as RuleCreateParams, type RuleUpdateParams as RuleUpdateParams, type RuleListParams as RuleListParams, type RuleDeleteParams as RuleDeleteParams, type RuleGetParams as RuleGetParams, }; export { CatchAlls as CatchAlls, type CatchAllAction as CatchAllAction, type CatchAllMatcher as CatchAllMatcher, type CatchAllUpdateResponse as CatchAllUpdateResponse, type CatchAllGetResponse as CatchAllGetResponse, type CatchAllUpdateParams as CatchAllUpdateParams, type CatchAllGetParams as CatchAllGetParams, }; }