cloudflare
Version:
The official TypeScript library for the Cloudflare API
82 lines (70 loc) • 1.93 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 CiphersAPI from "./ciphers";
export class Ciphers extends APIResource {
/**
* Changes ciphers setting.
*/
edit(params: CipherEditParams, options?: Core.RequestOptions): Core.APIPromise<Ciphers> {
const { zone_id, ...body } = params;
return (
this._client.patch(`/zones/${zone_id}/settings/ciphers`, { body, ...options }) as Core.APIPromise<{
result: Ciphers;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Gets ciphers setting.
*/
get(params: CipherGetParams, options?: Core.RequestOptions): Core.APIPromise<Ciphers> {
const { zone_id } = params;
return (
this._client.get(`/zones/${zone_id}/settings/ciphers`, options) as Core.APIPromise<{ result: Ciphers }>
)._thenUnwrap((obj) => obj.result);
}
}
/**
* An allowlist of ciphers for TLS termination. These ciphers must be in the
* BoringSSL format.
*/
export interface Ciphers {
/**
* ID of the zone setting.
*/
id: 'ciphers';
/**
* Current value of the zone setting.
*/
value: Array<string>;
/**
* 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 CipherEditParams {
/**
* Path param: Identifier
*/
zone_id: string;
/**
* Body param: Value of the zone setting.
*/
value: Array<string>;
}
export interface CipherGetParams {
/**
* Identifier
*/
zone_id: string;
}
export namespace Ciphers {
export import Ciphers = CiphersAPI.Ciphers;
export import CipherEditParams = CiphersAPI.CipherEditParams;
export import CipherGetParams = CiphersAPI.CipherGetParams;
}