cloudflare
Version:
The official TypeScript library for the Cloudflare API
81 lines (69 loc) • 1.85 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 HTTP3API from "./http3";
export class HTTP3Resource extends APIResource {
/**
* Value of the HTTP3 setting.
*/
edit(params: HTTP3EditParams, options?: Core.RequestOptions): Core.APIPromise<HTTP3> {
const { zone_id, ...body } = params;
return (
this._client.patch(`/zones/${zone_id}/settings/http3`, { body, ...options }) as Core.APIPromise<{
result: HTTP3;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Value of the HTTP3 setting.
*/
get(params: HTTP3GetParams, options?: Core.RequestOptions): Core.APIPromise<HTTP3> {
const { zone_id } = params;
return (
this._client.get(`/zones/${zone_id}/settings/http3`, options) as Core.APIPromise<{ result: HTTP3 }>
)._thenUnwrap((obj) => obj.result);
}
}
/**
* HTTP3 enabled for this zone.
*/
export interface HTTP3 {
/**
* ID of the zone setting.
*/
id: 'http3';
/**
* 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 HTTP3EditParams {
/**
* Path param: Identifier
*/
zone_id: string;
/**
* Body param: Value of the HTTP3 setting.
*/
value: 'on' | 'off';
}
export interface HTTP3GetParams {
/**
* Identifier
*/
zone_id: string;
}
export namespace HTTP3Resource {
export import HTTP3 = HTTP3API.HTTP3;
export import HTTP3EditParams = HTTP3API.HTTP3EditParams;
export import HTTP3GetParams = HTTP3API.HTTP3GetParams;
}