cloudflare
Version:
The official TypeScript library for the Cloudflare API
245 lines (212 loc) • 6.63 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../resource';
import * as Core from '../../core';
import * as AccessRulesAPI from './access-rules';
import { V4PagePaginationArray, type V4PagePaginationArrayParams } from '../../pagination';
export class UARules extends APIResource {
/**
* Creates a new User Agent Blocking rule in a zone.
*/
create(params: UARuleCreateParams, options?: Core.RequestOptions): Core.APIPromise<UARuleCreateResponse> {
const { zone_id, ...body } = params;
return (
this._client.post(`/zones/${zone_id}/firewall/ua_rules`, { body, ...options }) as Core.APIPromise<{
result: UARuleCreateResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Updates an existing User Agent Blocking rule.
*/
update(
uaRuleId: string,
params: UARuleUpdateParams,
options?: Core.RequestOptions,
): Core.APIPromise<UARuleUpdateResponse> {
const { zone_id, ...body } = params;
return (
this._client.put(`/zones/${zone_id}/firewall/ua_rules/${uaRuleId}`, {
body,
...options,
}) as Core.APIPromise<{ result: UARuleUpdateResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Fetches User Agent Blocking rules in a zone. You can filter the results using
* several optional parameters.
*/
list(
params: UARuleListParams,
options?: Core.RequestOptions,
): Core.PagePromise<UARuleListResponsesV4PagePaginationArray, UARuleListResponse> {
const { zone_id, ...query } = params;
return this._client.getAPIList(
`/zones/${zone_id}/firewall/ua_rules`,
UARuleListResponsesV4PagePaginationArray,
{ query, ...options },
);
}
/**
* Deletes an existing User Agent Blocking rule.
*/
delete(
uaRuleId: string,
params: UARuleDeleteParams,
options?: Core.RequestOptions,
): Core.APIPromise<UARuleDeleteResponse> {
const { zone_id } = params;
return (
this._client.delete(`/zones/${zone_id}/firewall/ua_rules/${uaRuleId}`, options) as Core.APIPromise<{
result: UARuleDeleteResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Fetches the details of a User Agent Blocking rule.
*/
get(
uaRuleId: string,
params: UARuleGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<UARuleGetResponse> {
const { zone_id } = params;
return (
this._client.get(`/zones/${zone_id}/firewall/ua_rules/${uaRuleId}`, options) as Core.APIPromise<{
result: UARuleGetResponse;
}>
)._thenUnwrap((obj) => obj.result);
}
}
export class UARuleListResponsesV4PagePaginationArray extends V4PagePaginationArray<UARuleListResponse> {}
export type UARuleCreateResponse = unknown | string | null;
export type UARuleUpdateResponse = unknown | string | null;
export interface UARuleListResponse {
/**
* The unique identifier of the User Agent Blocking rule.
*/
id?: string;
/**
* The configuration object for the current rule.
*/
configuration?: UARuleListResponse.Configuration;
/**
* An informative summary of the rule.
*/
description?: string;
/**
* The action to apply to a matched request.
*/
mode?: 'block' | 'challenge' | 'js_challenge' | 'managed_challenge';
/**
* When true, indicates that the rule is currently paused.
*/
paused?: boolean;
}
export namespace UARuleListResponse {
/**
* The configuration object for the current rule.
*/
export interface Configuration {
/**
* The configuration target for this rule. You must set the target to `ua` for User
* Agent Blocking rules.
*/
target?: string;
/**
* The exact user agent string to match. This value will be compared to the
* received `User-Agent` HTTP header value.
*/
value?: string;
}
}
export interface UARuleDeleteResponse {
/**
* The unique identifier of the User Agent Blocking rule.
*/
id?: string;
}
export type UARuleGetResponse = unknown | string | null;
export interface UARuleCreateParams {
/**
* Path param: Identifier
*/
zone_id: string;
/**
* Body param: The rule configuration.
*/
configuration:
| AccessRulesAPI.AccessRuleIPConfigurationParam
| AccessRulesAPI.IPV6ConfigurationParam
| AccessRulesAPI.AccessRuleCIDRConfigurationParam
| AccessRulesAPI.ASNConfigurationParam
| AccessRulesAPI.CountryConfigurationParam;
/**
* Body param: The action to apply to a matched request.
*/
mode: 'block' | 'challenge' | 'whitelist' | 'js_challenge' | 'managed_challenge';
}
export interface UARuleUpdateParams {
/**
* Path param: Identifier
*/
zone_id: string;
/**
* Body param: The rule configuration.
*/
configuration:
| AccessRulesAPI.AccessRuleIPConfigurationParam
| AccessRulesAPI.IPV6ConfigurationParam
| AccessRulesAPI.AccessRuleCIDRConfigurationParam
| AccessRulesAPI.ASNConfigurationParam
| AccessRulesAPI.CountryConfigurationParam;
/**
* Body param: The action to apply to a matched request.
*/
mode: 'block' | 'challenge' | 'whitelist' | 'js_challenge' | 'managed_challenge';
}
export interface UARuleListParams extends V4PagePaginationArrayParams {
/**
* Path param: Identifier
*/
zone_id: string;
/**
* Query param: A string to search for in the description of existing rules.
*/
description?: string;
/**
* Query param: A string to search for in the description of existing rules.
*/
description_search?: string;
/**
* Query param: A string to search for in the user agent values of existing rules.
*/
ua_search?: string;
}
export interface UARuleDeleteParams {
/**
* Identifier
*/
zone_id: string;
}
export interface UARuleGetParams {
/**
* Identifier
*/
zone_id: string;
}
UARules.UARuleListResponsesV4PagePaginationArray = UARuleListResponsesV4PagePaginationArray;
export declare namespace UARules {
export {
type UARuleCreateResponse as UARuleCreateResponse,
type UARuleUpdateResponse as UARuleUpdateResponse,
type UARuleListResponse as UARuleListResponse,
type UARuleDeleteResponse as UARuleDeleteResponse,
type UARuleGetResponse as UARuleGetResponse,
UARuleListResponsesV4PagePaginationArray as UARuleListResponsesV4PagePaginationArray,
type UARuleCreateParams as UARuleCreateParams,
type UARuleUpdateParams as UARuleUpdateParams,
type UARuleListParams as UARuleListParams,
type UARuleDeleteParams as UARuleDeleteParams,
type UARuleGetParams as UARuleGetParams,
};
}