cloudflare
Version:
The official TypeScript library for the Cloudflare API
96 lines (84 loc) • 2.8 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import * as Core from "../../../core";
import { APIResource } from "../../../resource";
import * as SortQueryStringForCacheAPI from "./sort-query-string-for-cache";
export class SortQueryStringForCacheResource extends APIResource {
/**
* Cloudflare will treat files with the same query strings as the same file in
* cache, regardless of the order of the query strings. This is limited to
* Enterprise Zones.
*/
edit(
params: SortQueryStringForCacheEditParams,
options?: Core.RequestOptions,
): Core.APIPromise<SortQueryStringForCache> {
const { zone_id, ...body } = params;
return (
this._client.patch(`/zones/${zone_id}/settings/sort_query_string_for_cache`, {
body,
...options,
}) as Core.APIPromise<{ result: SortQueryStringForCache }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Cloudflare will treat files with the same query strings as the same file in
* cache, regardless of the order of the query strings. This is limited to
* Enterprise Zones.
*/
get(
params: SortQueryStringForCacheGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<SortQueryStringForCache> {
const { zone_id } = params;
return (
this._client.get(`/zones/${zone_id}/settings/sort_query_string_for_cache`, options) as Core.APIPromise<{
result: SortQueryStringForCache;
}>
)._thenUnwrap((obj) => obj.result);
}
}
/**
* Cloudflare will treat files with the same query strings as the same file in
* cache, regardless of the order of the query strings. This is limited to
* Enterprise Zones.
*/
export interface SortQueryStringForCache {
/**
* ID of the zone setting.
*/
id: 'sort_query_string_for_cache';
/**
* Current value of the zone setting.
*/
value: 'on' | 'off';
/**
* Whether or not this setting can be modified for this zone (based on your
* Cloudflare plan level).
*/
editable?: true | false;
/**
* last time this setting was modified.
*/
modified_on?: string | null;
}
export interface SortQueryStringForCacheEditParams {
/**
* Path param: Identifier
*/
zone_id: string;
/**
* Body param: Value of the zone setting.
*/
value: 'on' | 'off';
}
export interface SortQueryStringForCacheGetParams {
/**
* Identifier
*/
zone_id: string;
}
export namespace SortQueryStringForCacheResource {
export import SortQueryStringForCache = SortQueryStringForCacheAPI.SortQueryStringForCache;
export import SortQueryStringForCacheEditParams = SortQueryStringForCacheAPI.SortQueryStringForCacheEditParams;
export import SortQueryStringForCacheGetParams = SortQueryStringForCacheAPI.SortQueryStringForCacheGetParams;
}